func crypto/tls.unexpectedMessageError

21 uses

	crypto/tls (current package)
		common.go#L1743: func unexpectedMessageError(wanted, got any) error {
		conn.go#L1272: 		return unexpectedMessageError(helloReq, msg)
		handshake_client.go#L308: 		return unexpectedMessageError(serverHello, msg)
		handshake_client.go#L652: 		return unexpectedMessageError(certMsg, msg)
		handshake_client.go#L742: 		return unexpectedMessageError(shd, msg)
		handshake_client.go#L1000: 		return unexpectedMessageError(serverFinished, msg)
		handshake_client.go#L1036: 		return unexpectedMessageError(sessionTicketMsg, msg)
		handshake_client_tls13.go#L399: 		return unexpectedMessageError(serverHello, msg)
		handshake_client_tls13.go#L533: 		return unexpectedMessageError(encryptedExtensions, msg)
		handshake_client_tls13.go#L625: 		return unexpectedMessageError(certMsg, msg)
		handshake_client_tls13.go#L650: 		return unexpectedMessageError(certVerify, msg)
		handshake_client_tls13.go#L697: 		return unexpectedMessageError(finished, msg)
		handshake_server.go#L144: 		return nil, nil, unexpectedMessageError(clientHello, msg)
		handshake_server.go#L700: 			return unexpectedMessageError(certMsg, msg)
		handshake_server.go#L728: 		return unexpectedMessageError(ckx, msg)
		handshake_server.go#L770: 			return unexpectedMessageError(certVerify, msg)
		handshake_server.go#L863: 		return unexpectedMessageError(clientFinished, msg)
		handshake_server_tls13.go#L587: 		return nil, unexpectedMessageError(clientHello, msg)
		handshake_server_tls13.go#L1053: 		return unexpectedMessageError(certMsg, msg)
		handshake_server_tls13.go#L1079: 			return unexpectedMessageError(certVerify, msg)
		handshake_server_tls13.go#L1131: 		return unexpectedMessageError(finished, msg)